Hyper Text Markup Language
Most web sites are have html pages. A browser requests a web server using a HTTP request. The web server communicates to the browser using a HTTP response.
HTTP - Hyper Text Transfer Protocol
Elements in a HTTP end-to-end request response cycle are,
The above syntax is of the following format,
Opening_tag: Contents : Closing_tag
The following code displays HTML content with a bold tag,
In [1]:
from IPython.core.display import display, HTML
display(HTML('My first ipython HTML <b>bold</b> tag'))
In [3]:
display(HTML('My first ipython HTML <em>italics</em> tag'))
In [4]:
display(HTML('My first ipython HTML <em>italics tag'))
In [ ]: